type net/http.wantConnQueue
13 uses
net/http (current package)
transport.go#L101: idleConnWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L112: connsPerHostWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L113: dialsInProgress wantConnQueue
transport.go#L1251: t.idleConnWait = make(map[connectMethodKey]wantConnQueue)
transport.go#L1413: type wantConnQueue struct {
transport.go#L1430: func (q *wantConnQueue) len() int {
transport.go#L1435: func (q *wantConnQueue) pushBack(w *wantConn) {
transport.go#L1440: func (q *wantConnQueue) popFront() *wantConn {
transport.go#L1455: func (q *wantConnQueue) peekFront() *wantConn {
transport.go#L1467: func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
transport.go#L1479: func (q *wantConnQueue) cleanFrontCanceled() {
transport.go#L1491: func (q *wantConnQueue) all(f func(*wantConn)) {
transport.go#L1615: t.connsPerHostWait = make(map[connectMethodKey]wantConnQueue)
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |